/* SAME BASE CSS – Poppins, colors, hero, cards, CTA etc */
/* (Main tere wale CSS ko preserve kar raha hoon) */

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background:#f9fafc;
  color:#1a1a1a;
  line-height:1.6;
}

/* HERO */
.hero {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:white;
  border-radius:0 0 60px 60px;
  padding:60px 8%;
  flex-wrap:wrap;
  gap:40px;
}

.hero-content { flex:1 1 480px; }

.hero-content h1 {
  font-size:38px;
  margin-bottom:20px;
}

.hero-content p {
  opacity:0.9;
  font-size:18px;
}

.hero-image { flex:1 1 480px; text-align:center; }

.hero-image img {
  width:420px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

/* TAGLINE */
.tagline {
  display:inline-block;
  background:#facc15;
  color:#111;
  padding:6px 15px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  margin-bottom:15px;
}

/* SECTION HEADING */
.highlights h2,
.locations h2,
.documents h2,
.about-content h2,
.cta h2 {
  text-align:center;
  margin-bottom:40px;
  font-size:32px;
  color:#f4a100;
}

/* CARDS GRID */
.highlight-grid,
.location-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  padding:0 8% 60px;
}

.card,
.location-card {
  background:white;
  padding:25px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  text-align:center;
  transition:.3s;
}

.card:hover,
.location-card:hover { transform:translateY(-5px); }

/* ABOUT SECTION */
.about-vehicle {
  background:#fff;
  padding:70px 8%;
}

.container { max-width:1000px; margin:auto; text-align:center; }

.about-content p {
  color:#6b7280;
  margin-bottom:12px;
  font-size:16px;
}

/* DOCUMENTS */
.documents ul {
  max-width:500px;
  margin:auto;
  list-style:none;
  text-align:center;
}

.documents li {
  padding:10px 0;
  border-bottom:1px solid #eee;
}

/* CTA */
.cta {
  text-align:center;
  background:#2563eb;
  color:white;
  border-radius:40px;
  padding:50px 20px;
  margin:40px 8%;
}

.cta-buttons {
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.whatsapp-btn,
.call-btn {
  color:white;
  padding:15px 30px;
  border-radius:40px;
  text-decoration:none;
  font-weight:bold;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.whatsapp-btn { background:#25D366; }
.call-btn { background:#33b5e5; }

.whatsapp-btn:hover,
.call-btn:hover { transform:translateY(-3px); }

/* FLOAT BUTTONS */
.floating-whatsapp {
  position:fixed;
  left:20px;
  bottom:20px;
  background:#25D366;
  color:white;
  padding:15px;
  border-radius:50%;
  font-size:22px;
}

.scroll-top {
  position:fixed;
  right:20px;
  bottom:20px;
  background:#33b5e5;
  color:white;
  padding:15px;
  border-radius:50%;
}

/* MOBILE */
@media (max-width:576px) {

.hero { padding:40px 5%; }

.hero-content h1 { font-size:24px; }

.hero-content p { font-size:14px; }

.hero-image img { max-width:260px; }

.highlight-grid,
.location-grid { grid-template-columns:1fr; }

.cta { margin:30px 5%; border-radius:20px; }

.whatsapp-btn,
.call-btn {
  width:100%;
  max-width:260px;
  justify-content:center;
  font-size:14px;
}
}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

}
